home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="utf-8"?>
- <html><head><title>Reset Statement [Runtime]</title><meta name="filename" content="text/sbasic/common/03020104"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
-
- p.P1{
- }
- p.P2{
- }
- span.T1{
- font-weight:bold;}
- </style></head><body>
-
-
- <help:to-be-embedded Eid="reset" xmlns:help="http://openoffice.org/2000/help">
- <p class="Head1"><help:link Id="66415">Reset Statement [Runtime]</help:link></p>
- <p class="Paragraph">Closes all open files and writes the contents of all file buffers to disk.</p>
- </help:to-be-embedded>
- <p class="Paragraph"><span class="T1">Syntax</span>:</p>
- <p class="Paragraph">Reset <help:key-word value="Reset" tag="kw66415_1" xmlns:help="http://openoffice.org/2000/help"/></p>
- <p class="P2">Example:</p>
- <p class="PropText">Sub ExampleReset</p>
- <p class="PropText">On Error Goto ErrorHandler</p>
- <p class="PropText">Dim iNumber As Integer</p>
- <p class="PropText">Dim iCount As Integer</p>
- <p class="PropText">Dim sZeile As String</p>
- <p class="PropText">Dim aFile As String</p>
- <p class="PropText">aFile = "c:\data.txt"</p>
- <p class="PropText"/>
- <p class="PropText">iNumber = Freefile</p>
- <p class="PropText">Open aFile For Output As #iNumber</p>
- <p class="PropText">Print #iNumber, "This is a new line of text"</p>
- <p class="PropText">Close #iNumber</p>
- <p class="PropText"/>
- <p class="PropText">iNumber = Freefile</p>
- <p class="PropText">Open aFile For Input As iNumber</p>
- <p class="PropText">For iCount = 1 to 5</p>
- <p class="PropText">Line Input #iNumber, sLine</p>
- <p class="PropText">If sLine <>"" then</p>
- <p class="PropText">rem</p>
- <p class="PropText">end if</p>
- <p class="PropText">Next iCount</p>
- <p class="PropText">Close #iNumber</p>
- <p class="PropText">Exit Sub</p>
- <p class="PropText">ErrorHandler:</p>
- <p class="PropText">Reset</p>
- <p class="PropText">MsgBox "All files will be closed",0,"Error"</p>
- <p class="PropText">End Sub</p>
- <p class="PropText"/>
- </body></html>